home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / tkern10.zip / SRC\SETUPIO.C < prev    next >
Text File  |  1994-07-03  |  725b  |  27 lines

  1. #pragma inline
  2. /*
  3.  *  This file forms part of "TKERN" - "Troy's Kernel for Windows".
  4.  *
  5.  *  Copyright (C) 1994  Troy Rollo <troy@cbme.unsw.EDU.AU>
  6.  *
  7.  *  This file is explicitly placed in the public domain. You may use it
  8.  *  it for any purpose you see fit, including, but not limited to,
  9.  *  incorperating it into a private, commercial, public domain,
  10.  *  shareware, freeware or free software work.
  11.  */
  12.  
  13. void near _setupio( void )
  14. {
  15. /* I/O Setup is performed in WinMain for TKERN */
  16. }
  17.  
  18. /*#pragma warn -asm*/
  19. asm _INIT_      SEGMENT WORD PUBLIC 'INITDATA'
  20. asm         db      0
  21. asm         db      2
  22. asm         dw      offset _setupio
  23. asm         dw      0
  24. asm _INIT_  ENDS
  25. /*#pragma warn .asm*/
  26.  
  27.